home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / MRAC / Lengths / Generate / qlength < prev   
Text File  |  1998-08-11  |  897b  |  30 lines

  1. qlength pattern
  2.  
  3. This function provides a convenient form of short-hand for writing lists of note-lengths. To see an alternative form of short-hand examine g-length. 
  4.  
  5. (qlength '16-1111)
  6. => (1/16 1/16 1/16 1/16)
  7.  
  8. (qlength '(16-1[11]1))
  9. => (1/16 11/16 1/16)
  10.  
  11. (qlength '(16-1[-11]1))
  12. => (1/16 -11/16 1/16)
  13.  
  14. (qlength '(16-103021[11]))
  15. => (1/16 -1/16 3/16 -1/16 2/16 1/16 11/16)
  16.  
  17. (qlength '(16-01 32-11 16-1 20-11[-3]))
  18. => (-1/16 1/16 1/32 1/32 1/16 1/20 1/20 -3/20)
  19.  
  20. (qlength '((16-01) (32-11) (16-1) (20-11[-3])))
  21. => ((-1/16 1/16) (1/32 1/32) (1/16) (1/20 1/20 -3/20))
  22.  
  23. (qlength '((12-111) (16-1111) (20-11111) (28-1111111)))
  24. => ((1/12 1/12 1/12) (1/16 1/16 1/16 1/16) (1/20 1/20 1/20 1/20 1/20)
  25.     (1/28 1/28 1/28 1/28 1/28 1/28 1/28))
  26.  
  27. (qlength '((12-1[11]) (16-1[11]1) (20-11[11]1) (28-111[11]11)))
  28. => ((1/12 11/12) (1/16 11/16 1/16) (1/20 1/20 11/20 1/20)
  29.     (1/28 1/28 1/28 11/28 1/28 1/28))
  30.